home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / ConfiguredUniverse / j3d1x1-window.z / j3d1x1-window
Encoding:
Text File  |  2003-08-08  |  3.4 KB  |  85 lines

  1. /*
  2.  *    @(#)j3d1x1-window 1.2 01/10/29 15:26:11
  3.  *
  4.  * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. /*
  41.  ************************************************************************
  42.  *  
  43.  * Java 3D configuration file for a conventional single screen, windowed
  44.  * desktop configuration.
  45.  *  
  46.  ************************************************************************
  47.  */
  48.  
  49. // Create a new screen object and associate it with a logical name and a
  50. // number.  This number is used as an index to retrieve the AWT GraphicsDevice
  51. // from the array that GraphicsEnvironment.getScreenDevices() returns.
  52. // 
  53. // NOTE: The GraphicsDevice order in the array is specific to the local
  54. // site and display system.
  55. // 
  56. (NewScreen center 0)
  57.  
  58. // Create a 700x700 pixel window on the screen.
  59. //
  60. (ScreenAttribute center WindowSize (700.0 700.0))
  61.  
  62. // Create a view using the defined screen.
  63. //
  64. (NewView view0)
  65. (ViewAttribute view0 Screen center)
  66.  
  67. // ConfiguredUniverse is oriented toward multi-screen viewing environments, so
  68. // it sets the following attributes to those listed.  For a conventional window
  69. // on a single screen desktop configuration we need to set them back to their
  70. // normal defaults.
  71. //
  72. // View.windowEyePointPolicy       RELATIVE_TO_COEXISTENCE
  73. // View.windowMovementPolicy       VIRTUAL_WORLD
  74. // View.windowResizePolicy         VIRTUAL_WORLD
  75. // View.coexistenceCenteringEnable false
  76. // ViewPlatform.viewAttachPolicy   NOMINAL_SCREEN
  77. // 
  78. (ViewAttribute view0 WindowEyepointPolicy       RELATIVE_TO_FIELD_OF_VIEW)
  79. (ViewAttribute view0 WindowMovementPolicy       PHYSICAL_WORLD)
  80. (ViewAttribute view0 WindowResizePolicy         PHYSICAL_WORLD)
  81. (ViewAttribute view0 CoexistenceCenteringEnable true)
  82.  
  83. (NewViewPlatform vp)
  84. (ViewPlatformAttribute vp ViewAttachPolicy NOMINAL_HEAD)
  85.